home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000042_news@columbia.edu _Sun Jul 21 10:54:03 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id KAA19873 for <kermit.misc@watsun.cc.columbia.edu>; Sun, 21 Jul 1996 10:54:02 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id KAA26293 for kermit.misc@watsun; Sun, 21 Jul 1996 10:54:01 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Greek  CP869 ELOT928
  8. Date: 21 Jul 1996 14:53:39 GMT
  9. Organization: Columbia University
  10. Lines: 38
  11. Message-ID: <4stg9j$dap@apakabar.cc.columbia.edu>
  12. References: <4sq24v$26p@amanda.dorsai.org>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4sq24v$26p@amanda.dorsai.org>,
  16. Vasos Panagiotopoulos <vjp2@dorsai.org> wrote:
  17. : SET FILE CHAR CP869 won't work on my MS-Kermit.. am I missing something?
  18. : Is this what I need to use to read ELOT-928 web pages with Lynx?
  19. CP869 is the "new" Greek code page, superseding the old one, CP851.
  20.  
  21. You'll need to load a Greek code page into your PC.  The first thing you
  22. will notice is that Microsoft does not include a Greek code page with US
  23. versions of DOS or Windows, so you'll need to get a Greek "font" from the
  24. kermit/pcfonts directory at kermit.columbia.edu (credit: these fonts
  25. originated at the Technion in Israel; see docs for details of credit and
  26. installation instructions).  Then load the Greek font.
  27.  
  28. Our font collection presently includes CP851, but not CP869.  If by happy
  29. coincidence the ELOT-928 Web pages are encoded in CP851, just tell MS-DOS
  30. Kermit to:
  31.  
  32.   set term bytesize 8
  33.   set term character-set transparent
  34.  
  35. If, however, they are encoded in ISO Latin/Greek, DEC Greek, CP869, or some
  36. other character set, it would require the program to be changed to add Greek
  37. terminal emulation, which is as yet not built into MS-DOS Kermit.
  38.  
  39. In that case, however, you can construct your own character-set translation
  40. map using:
  41.  
  42.   SET <latin-greek-value> <cp869-value> ; One of these for each character
  43.   SET TRANSLATE INPUT ON
  44.  
  45. as well as a series of SET KEY commands to set up the desired key map for
  46. entering Greek letters.
  47.  
  48. If anybody wants to do this, feel free -- and if you want to contribute it
  49. for inclusion with MS-DOS Kermit, all the better.
  50.  
  51. - Frank